summaryrefslogtreecommitdiff
path: root/hi-ui/src/routes/(app)/ch/[channel]/+page.js
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2024-10-09 15:40:32 -0400
committerKit La Touche <kit@transneptune.net>2024-10-09 15:40:32 -0400
commit84a672d6b63122b9732bc826d92a47bae97f2b25 (patch)
treeac35f32cecd73833cb5f615a8aa974f6b2103ee8 /hi-ui/src/routes/(app)/ch/[channel]/+page.js
parentbd53a51af835478d23bef4772ce7e50553dc3fdf (diff)
Fix up on-navigation data loading
Maybe this isn't ideal, but whatever.
Diffstat (limited to 'hi-ui/src/routes/(app)/ch/[channel]/+page.js')
-rw-r--r--hi-ui/src/routes/(app)/ch/[channel]/+page.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/hi-ui/src/routes/(app)/ch/[channel]/+page.js b/hi-ui/src/routes/(app)/ch/[channel]/+page.js
deleted file mode 100644
index 5fd493a..0000000
--- a/hi-ui/src/routes/(app)/ch/[channel]/+page.js
+++ /dev/null
@@ -1,13 +0,0 @@
-export const ssr = false;
-
-import { activeChannel } from '$lib/store';
-
-
-/** @type {import('./$types').PageLoad} */
-export function load({ params }) {
- let { channel } = params;
- activeChannel.update((value) => {
- value.set(channel)
- return value;
- });
-}